.heading {
  text-align: center;
  width: 73%;
  margin: auto;
  padding-bottom: 50px;
}
.heading h6 {

  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-block:10px;
}
.heading h2 {
  font-weight: 800;
}
.heading img {
  width: 160px;
  height: 100%;
  margin: 0;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e6f0ff;
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.06);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.1);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  /* background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue)); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px #ffffff, 0 4px 20px rgba(0, 123, 255, 0.2);
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #003366;
}

.service-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  min-height: 60px;
}

.services-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.services-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--primary-blue);
  display: inline-block;
  margin: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services-slider .owl-dot.active span {
  background: var(--accent-blue);
  transform: scale(1.5);
}
